home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 5 #3 / Selectware - The Ultimate Software Demonstration System - Selectware.ISO / int50002 / swtdemo.bat < prev    next >
Encoding:
DOS Batch File  |  1993-08-15  |  373 b   |  34 lines

  1.  
  2.  
  3. @echo off
  4. :start
  5. cls
  6.  
  7. echo Does your pc have a sound card
  8. echo.
  9. echo  1. yes
  10. echo  2. no
  11. echo  3. exit
  12. echo.
  13. echo   Enter an option (1-3)
  14. query
  15.  
  16.  
  17. if ERRORLEVEL 3 goto end
  18. if ERRORLEVEL 2 goto no
  19. if ERRORLEVEL 1 goto yes
  20. echo Error!  Error!   Input not 1-3 try again
  21. pause
  22. goto start
  23.  
  24. :no
  25. demo
  26. goto end
  27.  
  28. :yes
  29. config
  30. demo /s
  31. goto end
  32.  
  33. :end
  34.